home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / asp_mdms.zip / TELEBIT.ASP < prev    next >
Text File  |  1989-08-01  |  4KB  |  84 lines

  1. ;*************************************************************************
  2. ;* TELEBIT.ASP (C) 1988 DATASTORM TECHNOLOGIES, INC.                     *
  3. ;*                                                                       *
  4. ;* An ASPECT script file for initializing the TELEBIT TRAILBLAZER PLUS   *
  5. ;* for proper use with PROCOMM PLUS.                                     *
  6. ;*                                                                       *
  7. ;*************************************************************************
  8.  
  9. CLEAR
  10. CUROFF
  11. BOX 0 0 9 60 14
  12. ATSAY 2 2 14 "PROCOMM PLUS is designed to work efficiently with the"
  13. ATSAY 3 2 14 "TELEBIT TRAILBLAZER PLUS in all its operational modes,"
  14. ATSAY 4 2 14 "but the initial setup differs from the setup for ordinary"
  15. ATSAY 5 2 14 "non-error-correcting modems."
  16. ATSAY 7 2 14 "                 <press ENTER to continue>"
  17. WAIT1:
  18. IF NOT HITKEY
  19.    GOTO WAIT1
  20. ENDIF
  21. CLEAR
  22. BOX 0 0 17 59 14
  23. ATSAY 2 2 14 "The basic principle is that the computer-to-modem baud-"
  24. ATSAY 3 2 14 "rate is fixed at 19200 (thus your status line will"
  25. ATSAY 4 2 14 "*always* read 19200) and the modem itself adjusts to"
  26. ATSAY 5 2 14 "the actual speed of the connection."
  27. ATSAY 7 2 14 "This ASPECT file sends to the modem all the commands"
  28. ATSAY 8 2 14 "necessary for efficient automatic use of its error-"
  29. ATSAY 9 2 14 "correcting features. You only need to run it one time,"
  30. ATSAY 10 2 14 "since it tells the modem to write these settings to"
  31. ATSAY 11 2 14 "non-volatile RAM. It is also very important to follow"
  32. ATSAY 12 2 14 "*exactly* the instructions that appear on the screen"
  33. ATSAY 13 2 14 "as you run this file."
  34. ATSAY 15 2 14 "                 <press ENTER to continue>"
  35. WAIT2:
  36. IF NOT HITKEY
  37.    GOTO WAIT2
  38. ENDIF
  39. CLEAR
  40. SOUND 440 50
  41. BOX 0 0 4 56 14
  42. ATSAY 2 2 14 "TRAILBLAZER PLUS modem initialization... WORKING..."
  43. SET BAUDRATE 19200                        ;Set up comm line
  44. SET PARITY NONE
  45. SET DATABITS 8
  46. SET STOPBITS 1
  47. SET DISPLAY OFF
  48. SET TXPACE 50
  49. TRANSMIT "AT&F^M"                         ;Get factory defaults
  50. PAUSE 1                                   ;if modem is set to 19200
  51. SET BAUDRATE 9600
  52. TRANSMIT "AT&F^M"                         ;Get factory defaults
  53. PAUSE 1                                   ;if modem is set to 9600
  54. TRANSMIT "ATS51=5^M"                      ;Set modem speed to 19200
  55. PAUSE 1
  56. SET BAUDRATE 19200
  57. TRANSMIT "AT S52=1^M"                     ;Set DTR to follow actual line state
  58. TRANSMIT "AT S53=1^M"                     ;Set CD to follow actual line state
  59. TRANSMIT "AT S58=2^M"                     ;Enable RTS/CTS handshaking
  60. TRANSMIT "AT S66=1^M"                     ;Lock DCE/DTE interface speed
  61. TRANSMIT "AT S68=2^M"                     ;Hardware flow control
  62. TRANSMIT "AT S11=55^M"                    ;Speed up dialing
  63. TRANSMIT "AT&W^M"                         ;Write settings to NRAM
  64. SET TXPACE 0
  65. CLEAR
  66. SET DISPLAY ON
  67. SOUND 440 50
  68. BOX 0 0 16 58 14
  69. ATSAY 2 2 14 "TRAILBLAZER PLUS modem initialization - COMPLETED!"
  70. ATSAY 4 2 14 "Your TELEBIT modem will now power up with the proper"
  71. ATSAY 5 2 14 "defaults for PROCOMM PLUS.  You should now use the"
  72. ATSAY 6 2 14 "Setup Facility (Alt-S) MODEM OPTIONS to make your"
  73. ATSAY 7 2 14 "INITIALIZATION COMMAND `"ATZ^M`" (without the quotes)."
  74. ATSAY 8 2 14 "In addition AUTOBAUD DETECT should be set to OFF and"
  75. ATSAY 9 2 14 "in TERMINAL OPTIONS Hardware Flow Control (RTS/CTS)"
  76. ATSAY 10 2 14 "should be turned ON. All dialing directory entries"
  77. ATSAY 11 2 14 "should be should be set to 19200 baud, as well as your"
  78. ATSAY 12 2 14 "Alt-P line setting. Make sure to save your changes."
  79. ATSAY 13 2 14 "One last thing: your CONNECT MESSAGES in MODEM OPTIONS"
  80. ATSAY 14 2 14 "should all read simply `"CONNECT`" (without quotes)."
  81. CURON
  82. LOCATE 17 0
  83.  
  84.